home *** CD-ROM | disk | FTP | other *** search
/ Windows 95 Super Collection / Windows 95 Super Collection.iso / win95 / programm / vbxstd20 / stdafx.h_ / STDAFX.H
Encoding:
C/C++ Source or Header  |  1995-07-20  |  2.4 KB  |  95 lines

  1. // --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  2. //
  3. //        STDAFX.H
  4. //        VBX Studio 2.0 
  5. //        18-jul-95
  6. //        «HEXANET, COPYRIGHT HEXANET 1993-1995, ALL RIGHTS RESERVED
  7. //        EMail: hnet@dialup.francenet.fr / CIS: 100333,27
  8. //        HexaNet SW - BP 385.16 - 75768 PARIS CDX 16 - FRANCE
  9. //
  10. //        You can distribute this file as long as you distribute
  11. //        the full VBX Studio package.
  12. // --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  13. //        You can use this sample file as you want.
  14. // --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  15. #ifdef _WIN32
  16.     #ifndef _WINDOWS
  17.         #define _WINDOWS
  18.     #endif
  19. #endif
  20.  
  21. #ifdef _WINDOWS
  22.     #ifndef __AFXWIN_H__
  23.         #include <afx.h>         // MFC core and standard components
  24.         #include <afxwin.h>
  25.         #include <afxext.h>
  26.     #endif
  27.     #ifndef _WIN32
  28.         #ifndef _INC_TOOLHELP
  29.             #include <toolhelp.h>
  30.         #endif
  31.     #endif
  32. #else
  33.     #ifndef __AFX_H__
  34.         #include <afx.h>         // MFC core and standard components
  35.     #endif
  36.     #ifndef _INC_MALLOC
  37.         #include <malloc.h>
  38.     #endif
  39.     #ifndef _INC_STDIO
  40.         #include <stdio.h>
  41.     #endif
  42. #endif
  43. #ifndef _INC_CTYPE
  44.     #include <ctype.h>
  45. #endif
  46. #ifndef _INC_STDLIB
  47.     #include <stdlib.h>
  48. #endif
  49. #ifndef _INC_STRING
  50.     #include <string.h>
  51. #endif
  52. #ifndef _INC_MATH
  53.     #include <math.h>
  54. #endif
  55. #ifndef _INC_TYPES
  56.     #include <sys\types.h>
  57. #endif
  58. #ifndef _INC_STAT
  59.     #include <sys\stat.h>
  60. #endif
  61. #ifndef _INC_DIRECT
  62.     #include <direct.h>
  63. #endif
  64. #ifndef _INC_DOS
  65.     #include <dos.h>   
  66. #endif
  67. #ifndef _INC_ERRNO
  68.     #include <errno.h>
  69. #endif
  70. #ifndef _INC_MEMORY
  71.     #include <memory.h>
  72. #endif
  73. #ifndef _INC_IO
  74.     #include <io.h>
  75. #endif
  76. #ifndef _INC_TIME
  77.     #include <time.h> 
  78. #endif
  79. #ifndef _INC_FCNTL
  80.     #include <fcntl.h>
  81. #endif
  82. #ifndef _INC_LIMITS
  83.     #include <limits.h>
  84. #endif
  85. #ifdef _WIN32
  86.     #ifndef _INC_PROCESS
  87.         #include <process.h>
  88.     #endif
  89. #endif
  90. #ifndef _CSTR_H
  91.     #include <CSTR30.H>
  92. #endif
  93. // -------------------------------------------------------------------------------------------
  94. //    VBX Studio 2.0 dependencies
  95. #include <vbxstd20.h>